body {
    background-color:burlywood;
    background-image: url("/other files/Vintage Harmonies.png");
    background-size: 32rem;
    background-blend-mode: overlay;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

h1.title {
    background-color: yellowgreen;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    border: 1rem; 
    width: fit-content;
    justify-self: center;
    border-style:outset;
    border-radius: 0.5rem;
    border-color: #7ebf30; 
    padding: 1rem;
    margin-top: 2rem;
}

h1.title:hover {
    cursor: default;
}

.activity {
    background-color: palegreen;
    border-width: 0.25rem;
    border-color: black;
    border-style: dashed;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pageframe {
    background-color: rgba(255, 235, 205, 0.8);
    margin: 12rem 0%;
    padding: 1rem;
    width: min(90%, 64rem);
    position: relative;
}

#drag-indicator {
    font-family: cursive;
    position: absolute;
    user-select: none;
    left: 96px;
    top: 0px;
    font-weight: bold;
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 0 white);
}

.character_frame {
    background-color: #7ebf30;
    border-radius: 2rem;
    margin: 1rem;
    padding: 1rem; 
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
}

.dialog_box {
    position: relative;
    background-color:khaki;
    flex-grow: 1;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding:1rem;
    border-radius: 3rem;
    transition: height 0.5s;
    
    &:before {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        right: 100%;
        top: 3.5rem;
        
        border-top: 0.5rem solid transparent;
        border-bottom: 1.5rem solid transparent;
        border-right: 3rem solid khaki;
        
    }
    
    & > h2 {
      font-size: 2.5rem;
      margin: 0.5rem;
      margin-top: 1rem;
    }
    
    & > p {
      font-size: 2rem;
      margin: 0;
      margin-bottom: 1rem;
    }
}

.option_box {
    display: grid;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.25rem;
}

.sprite {
    transition: filter 0.5s, transform 0.5s cubic-bezier(0.18, 0.89, 0.47, 2);
}

.sprite:hover {
    cursor: grab;
    filter: drop-shadow(0 0 0.5rem yellow);
}

.sprite:active, .sprite.squish {
    cursor: grabbing;
    transform: scaleY(90%) scaleX(111%) translateY(5%);
}

.bounce {
    transform: translateY(1rem);
}

h1 {
    text-align: center;
}

h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 2rem;
}

p {
    font-family: sans-serif;
    font-size: 1.5rem;
}

button {
    --edge-size: 8px;
    position: relative;
    background-color:#f0f6a2;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    font-weight: 600;
    text-align: left;
    padding: 0.5rem;
    margin-bottom: calc(0.5rem + var(--edge-size));
    border-radius: 1rem;
    box-shadow: 0 var(--edge-size) 0 #403520; /* #bf9f60 */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    
    &:active {
        transform: translateY(var(--edge-size));
        box-shadow: 0 0 0 #403520;
    }
    
}

button:hover {
    cursor: pointer;        
}




